home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / s / ep_voice1-toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  197b  |  18 lines

  1. /* EaglePlayer - toggles Voice1 */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6.  
  7. status G vo1
  8.  
  9. if result == "no" then do
  10.     voice1 yes
  11.     say "Voice 1 now on"
  12. end
  13. else do
  14.     voice1 no
  15.     say "Voice 1 now off"
  16. end
  17.  
  18.